`:top
`!XHTML Basic`! is an `F33f`_`[XML`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=XML]`_`f-based structured `F33f`_`[markup language`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Markup_language]`_`f primarily designed for simple (mainly `*`F33f`_`[handheld`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Handheld]`_`f`*) `F33f`_`[user agents`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=User_agent]`_`f, often found in mobile devices such as mobile phones, PDAs, pagers, and set-top boxes..
XHTML Basic is a subset of `F33f`_`[XHTML 1.1`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=XHTML_1.1]`_`f, defined using `F33f`_`[XHTML Modularization`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=XHTML_Modularization]`_`f including a reduced set of modules for document structure, images, forms, basic tables, and object support. XHTML Basic is suitable for `F33f`_`[mobile phones`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Mobile_phone]`_`f, `F33f`_`[PDAs`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Personal_Digital_Assistant]`_`f, `F33f`_`[pagers`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Pager]`_`f, and `F33f`_`[settop boxes`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Interactive_television]`_`f.
XHTML Basic was once intended to replace older technologies like WML and C-HTML as more compliant user agents were developed. However, with the rise of `!`F33f`_`[HTML5`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=HTML5]`_`f`! as the dominant web standard, XHTML Basic has been largely supplanted. HTML5's rich feature set and cross-device compatibility have rendered separate mobile-specific languages like WML, C-HTML, and XHTML Basic unnecessary. Today, HTML5 provides a unified platform for creating websites that work across all devices, making XHTML Basic largely irrelevant in modern web development.
One significant advantage of XHTML Basic over WML and C-HTML is that XHTML Basic pages can be rendered differently in `F33f`_`[web browsers`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Web_browser]`_`f and on handheld devices, eliminating the need for creating two different versions of the same page.
The initial specification for XHTML Basic was released in 2000. In 2006, the specification was revised to version 1.1, incorporating six new features to better serve the small-device community. The latest update of the specification by the `F33f`_`[W3C`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=W3C]`_`f has been performed in 2018.`:cite-ref-1[`F5bf`_`[1`#cite-note-1]`_`f]
>>Contents
• `F0af`_`[Latest Developments (2018 Update)`#latest-developments-2018-update]`_`f
• `F0af`_`[DOCTYPE`#doctype]`_`f
• `F0af`_`[XHTML-Print`#xhtml-print]`_`f
• `F0af`_`[See also`#see-also]`_`f
• `F0af`_`[External links`#external-links]`_`f
• `F0af`_`[References`#references]`_`f
-─
>>Latest Developments (2018 Update)
The `!2018`! update to XHTML Basic by the `!`F33f`_`[W3C`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=W3C]`_`f`! focused on improving interoperability with current technologies, ensuring XHTML Basic pages remain usable across a broader range of modern devices, including those that have adopted more recent web standards. These changes aimed to refine how XHTML Basic interacts with modern networking environments, enhancing compatibility with newer handheld devices and browsers that now more frequently rely on `!`F33f`_`[HTML5`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=HTML5]`_`f`!.
While XHTML Basic remains functional, it is considered outdated in comparison to modern `!HTML5`!, which has become the dominant standard for mobile-first design. `!HTML5`! includes features for multimedia, graphics, and responsive layouts, making it far more versatile for current web development needs.
>>DOCTYPE
To validate as XHTML Basic, a document must contain the following `F33f`_`[Document Type Declaration`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Document_Type_Declaration]`_`f, or DOCTYPE:
`B100`F9d9<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">`f`b
A complete `F33f`_`[valid`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=XML]`_`f and `F33f`_`[well-formed`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Well-formed_XML_document]`_`f example is:
`B100`F9d9<?xml version="1.0" encoding="UTF-8"?>`f`b
`B100`F9d9<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN"`f`b
`B100`F9d9 "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">`f`b
`B100`F9d9<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">`f`b
`B100`F9d9 <head>`f`b
`B100`F9d9 <title>Hello</title>`f`b
`B100`F9d9 </head>`f`b
`B100`F9d9 <body>`f`b
`B100`F9d9 <p>Hello <a href="http://example.org/">world</a>.</p>`f`b
`B100`F9d9 </body>`f`b
`B100`F9d9</html>`f`b
Served with a `F33f`_`[MIME`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=MIME]`_`f type of "application/xhtml+xml".
>>XHTML-Print
XHTML-Print, which became a W3C Recommendation in September 2006, is a specialized version of XHTML Basic designed for documents printed from information appliances to low-end `F33f`_`[printers`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Printer_(computing)]`_`f.`:cite-ref-xhtml-print-2-0[`F5bf`_`[2`#cite-note-xhtml-print-2]`_`f]
>>See also
• `F33f`_`[XHTML`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=XHTML]`_`f
• `F33f`_`[List of document markup languages`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=List_of_document_markup_languages]`_`f
• `F33f`_`[Comparison of document markup languages`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=Comparison_of_document_markup_languages]`_`f
>>External links
• XHTML Basic
• An Overview of Mobile Versions of XHTML
• W3C Mobile Web Best Practices (for XHTML Basic 1.1)
>>References
`:cite-note-1`!1.`! `F0af`_`[↑`#cite-ref-1]`_`f "XHTML™ Basic 1.1 - Second Edition". `*www.w3.org`*. Retrieved 2022-01-25.
`:cite-note-xhtml-print-2`!2.`! `F0af`_`[↑`#cite-ref-xhtml-print-2-0]`_`f "XHTML-Print, W3C Recommendation 20 September 2006". `F33f`_`[World Wide Web Consortium`:/page/wikibook/entry.mu`zim=wikipedia_en_all_nopic_2025-08.zim|entry_path=World_Wide_Web_Consortium]`_`f. 2006-09-20. Retrieved 2008-07-19.
`c`F0af`_`[↑ Back to top`#top]`_`f`a